home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 1 / PC World Interactive 1 - Nisan 1997.iso / prog / masa / 2 / readme.mfc < prev    next >
Text File  |  1996-09-20  |  832b  |  17 lines

  1. This is the C++/MFC version of the AppBar source code.
  2.  
  3. Compile the source with VC v4.x with "m".  Don't forget to run
  4. VCVARS32.BAT if you haven't already.  Otherwise, cl will complain
  5. about not being able to find "afxwin.h".
  6.  
  7. The Makefile has one setting that allows you to change how Appbar 
  8. is built: you can link AppBar either statically or dynamically.
  9. If it is linked dynamically then it will require MFC4x.DLL and
  10. MSVCRT4x.DLL to run (where x is the minor release number of VC) but
  11. it will only be 40k.  If you link it statically, it will be about
  12. 150k but require no extra DLLs.  Personally, I prefer the static
  13. version because I think it ultimately uses less memory than the
  14. dynamic version.  If this is a big concern to you though, you
  15. should compile the C version, which is a 64k stand-alone executable.
  16.  
  17.